-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Chromium versions for api.Response.Response.body_param_null #13076
Add Chromium versions for api.Response.Response.body_param_null #13076
Conversation
This PR adds real values for Chromium (Chrome, Opera, Samsung Internet, WebView Android) for the `Response.body_param_null` member of the `Response` API, based upon commit history and date. Commit: https://source.chromium.org/chromium/chromium/src/+/3cef67a6ce8923e59bd08a7e4f04d64f08e89edd Additionally, this PR renames this parameter to `body_parameter_optional` for better consistency.
This reverts commit d8db63f.
@@ -194,15 +194,15 @@ | |||
} | |||
} | |||
}, | |||
"body_param_null": { | |||
"body_parameter_optional": { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My knowledge of BCD has obviously gotten out of date. Would you mind sending me an explanation of how this resolves to the key on the MDN page (browser-compat: api.Response.body
) when there's no part of the JSON tree named "body"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It doesn't resolve to api.Response.body
. This key is talking about the body
parameter passed into the Response()
constructor!
* Bump version to v4.0.9 * Set release date * Add release note for #12795 * Add release note for #13006 * Add release note for #13136 * Add release note for #13076 * Add release note for #13216 * Add release note for #11924 * Add release note for #13143 * Undo list of one item * Hoist known issues * Add stats * Fix compare link
This PR adds real values for Chromium (Chrome, Opera, Samsung Internet, WebView Android) for the
Response.body_param_null
member of theResponse
API, based upon commit history and date.Commit: https://source.chromium.org/chromium/chromium/src/+/3cef67a6ce8923e59bd08a7e4f04d64f08e89edd (commit was before the Response API was exposed)
Additionally, this PR renames this parameter to
body_parameter_optional
for better consistency.